home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Windows / WindowManagerUser.cp < prev    next >
Encoding:
Text File  |  1997-06-28  |  376 b   |  24 lines  |  [TEXT/CWIE]

  1. // WindowManagerUser.cp
  2.  
  3. #ifndef WindowManagerUser_h
  4. #include "WindowManagerUser.h"
  5. #endif
  6. #ifndef Integers_h
  7. #include "Integers.h"
  8. #endif
  9. #ifndef FontManagerUser_h
  10. #include "FontManagerUser.h"
  11. #endif
  12.  
  13. WindowManagerUser::WindowManagerUser()
  14.   {
  15.     static bool initialized = false;
  16.     
  17.     if ( !initialized )
  18.       {
  19.         FontManagerUser();
  20.         InitWindows();
  21.         initialized = true;
  22.       }
  23.   }
  24.